home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2001 December / Gamestar_35_2001-12_cd1.bin / PROGRAMY / cedt331.zip / data1.cab / Program_Files / template / hello world program.java < prev    next >
Text File  |  2001-10-25  |  172b  |  10 lines

  1. // basic template file for java 
  2.  
  3. import java.io.*;
  4.  
  5. public class HelloWorld {
  6.     public static void main(String[] args) {
  7.         System.out.println("hello world");
  8.     }
  9. }
  10.